mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
28 lines
629 B
Nix
28 lines
629 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "multitasking";
|
|
version = "0.0.11";
|
|
format = "setuptools";
|
|
|
|
# GitHub source releases aren't tagged
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-TWvDzGX5stynL7Wnh4UKiNro9iDCs2rptVJI5RvNYCY=";
|
|
};
|
|
|
|
doCheck = false; # No tests included
|
|
pythonImportsCheck = [ "multitasking" ];
|
|
|
|
meta = with lib; {
|
|
description = "Non-blocking Python methods using decorators";
|
|
homepage = "https://github.com/ranaroussi/multitasking";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|