ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / multitasking / default.nix
blobc59cfe25089ba24cbc6bf481e68e968b0de8706f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "multitasking";
8   version = "0.0.11";
10   # GitHub source releases aren't tagged
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-TWvDzGX5stynL7Wnh4UKiNro9iDCs2rptVJI5RvNYCY=";
14   };
16   doCheck = false;  # No tests included
17   pythonImportsCheck = [ "multitasking" ];
19   meta = with lib; {
20     description = "Non-blocking Python methods using decorators";
21     homepage = "https://github.com/ranaroussi/multitasking";
22     license = licenses.asl20;
23     maintainers = with maintainers; [ drewrisinger ];
24   };