pythonPackages.intreehooks: init at 1.0

This commit is contained in:
Frederik Rietdijk 2019-11-04 17:08:34 +01:00 committed by Frederik Rietdijk
parent d6292986d8
commit eb98b1d1d2
2 changed files with 30 additions and 0 deletions

View 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;
};
}

View File

@ -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 {};