default.nix (710B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "bounded-pool-executor"; 9 version = "0.0.3"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "mowshon"; 14 repo = "bounded_pool_executor"; 15 rev = "24b5a36ec4997c23ef377559ace6b3599af0f018"; 16 hash = "sha256-83xdIz94C7BjU+2zubt1tcFVnRF0F9DSDrCYzPBLmVk="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 pythonImportsCheck = [ "bounded_pool_executor" ]; 22 23 meta = { 24 description = "Bounded Process&Thread Pool Executor"; 25 homepage = "https://github.com/mowshon/bounded_pool_executor"; 26 license = lib.licenses.mit; 27 maintainers = [ lib.maintainers.sikmir ]; 28 }; 29 }