python3.pkgs.multimethod: init at 1.5
This commit is contained in:
parent
eb4d997f07
commit
6d897c9ef7
2 changed files with 33 additions and 0 deletions
31
pkgs/development/python-modules/multimethod/default.nix
Normal file
31
pkgs/development/python-modules/multimethod/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-cov
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "multimethod";
|
||||||
|
version = "1.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "b9c6f85ecf187f14a3951fff319643e1fac3086d757dec64f2469e1fd136b65d";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-cov
|
||||||
|
];
|
||||||
|
|
||||||
|
pythomImportsCheck = [
|
||||||
|
"multimethod"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Multiple argument dispatching";
|
||||||
|
homepage = "https://github.com/coady/multimethod";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = teams.determinatesystems.members;
|
||||||
|
};
|
||||||
|
}
|
|
@ -4513,6 +4513,8 @@ in {
|
||||||
|
|
||||||
multi_key_dict = callPackage ../development/python-modules/multi_key_dict { };
|
multi_key_dict = callPackage ../development/python-modules/multi_key_dict { };
|
||||||
|
|
||||||
|
multimethod = callPackage ../development/python-modules/multimethod { };
|
||||||
|
|
||||||
multipledispatch = callPackage ../development/python-modules/multipledispatch { };
|
multipledispatch = callPackage ../development/python-modules/multipledispatch { };
|
||||||
|
|
||||||
multiprocess = callPackage ../development/python-modules/multiprocess { };
|
multiprocess = callPackage ../development/python-modules/multiprocess { };
|
||||||
|
|
Loading…
Reference in a new issue