pythonPackages.intreehooks: init at 1.0
This commit is contained in:
parent
d6292986d8
commit
eb98b1d1d2
28
pkgs/development/python-modules/intreehooks/default.nix
Normal file
28
pkgs/development/python-modules/intreehooks/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytoml
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "intreehooks";
|
||||
version = "1.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "87e600d3b16b97ed219c078681260639e77ef5a17c0e0dbdd5a302f99b4e34e1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytoml ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = {
|
||||
description = "Load a PEP 517 backend from inside the source tree";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.fridh ];
|
||||
homepage = https://github.com/takluyver/intreehooks;
|
||||
};
|
||||
}
|
@ -2540,6 +2540,8 @@ in {
|
||||
|
||||
iniparse = callPackage ../development/python-modules/iniparse { };
|
||||
|
||||
intreehooks = callPackage ../development/python-modules/intreehooks { };
|
||||
|
||||
i3-py = callPackage ../development/python-modules/i3-py { };
|
||||
|
||||
JayDeBeApi = callPackage ../development/python-modules/JayDeBeApi {};
|
||||
|
Loading…
Reference in New Issue
Block a user