1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "multitasking";
8 version = "0.0.11";
9
10 # GitHub source releases aren't tagged
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-TWvDzGX5stynL7Wnh4UKiNro9iDCs2rptVJI5RvNYCY=";
14 };
15
16 doCheck = false; # No tests included
17 pythonImportsCheck = [ "multitasking" ];
18
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 };
25}