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