forked from mirrors/nixpkgs
pythonPackages.matchpy: init at 0.4.6
This commit is contained in:
parent
b5d58552c0
commit
fe5a7e5ed6
31
pkgs/development/python-modules/matchpy/default.nix
Normal file
31
pkgs/development/python-modules/matchpy/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, hopcroftkarp
|
||||
, multiset
|
||||
, pytest
|
||||
, pytestrunner
|
||||
, hypothesis
|
||||
, setuptools_scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "matchpy";
|
||||
version = "0.4.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "eefa1e50a10e1255db61bc2522a6768ad0701f8854859f293ebaa442286faadd";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools_scm pytestrunner ];
|
||||
checkInputs = [ pytest hypothesis ];
|
||||
propagatedBuildInputs = [ hopcroftkarp multiset ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library for pattern matching on symbolic expressions";
|
||||
homepage = https://github.com/HPAC/matchpy;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -422,6 +422,8 @@ in {
|
|||
|
||||
markerlib = callPackage ../development/python-modules/markerlib { };
|
||||
|
||||
matchpy = callPackage ../development/python-modules/matchpy { };
|
||||
|
||||
monty = callPackage ../development/python-modules/monty { };
|
||||
|
||||
mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py;
|
||||
|
|
Loading…
Reference in a new issue