blob: d57f0bce0aa80d1990f556b5ad7400edc8b156c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "multitasking";
version = "0.0.12";
format = "setuptools";
# GitHub source releases aren't tagged
src = fetchPypi {
inherit pname version;
hash = "sha256-L7ovqO2MS4XiJ8XdfcQcfWWN47byR5JzFhdaVzSbhNE=";
};
doCheck = false; # No tests included
pythonImportsCheck = [ "multitasking" ];
meta = {
description = "Non-blocking Python methods using decorators";
homepage = "https://github.com/ranaroussi/multitasking";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|