Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / multitasking / default.nix
blobc3401ed6530c9ea6fe096c4a4a69c618f04e22a8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "multitasking";
8   version = "0.0.11";
9   format = "setuptools";
11   # GitHub source releases aren't tagged
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-TWvDzGX5stynL7Wnh4UKiNro9iDCs2rptVJI5RvNYCY=";
15   };
17   doCheck = false;  # No tests included
18   pythonImportsCheck = [ "multitasking" ];
20   meta = with lib; {
21     description = "Non-blocking Python methods using decorators";
22     homepage = "https://github.com/ranaroussi/multitasking";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ drewrisinger ];
25   };