Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / multitasking / default.nix
bloba186325b394179aeb5e6f61db7aab8553bd0e9e6
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     hash = "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   };