linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / intreehooks / default.nix
blobe76a6997cb67e09bf90b12af698c3519c1ced0c9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytoml
5 , pytest
6 }:
8 buildPythonPackage rec {
9   pname = "intreehooks";
10   version = "1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "87e600d3b16b97ed219c078681260639e77ef5a17c0e0dbdd5a302f99b4e34e1";
16   };
18   propagatedBuildInputs = [ pytoml ];
20   checkInputs = [ pytest ];
22   meta = {
23     description = "Load a PEP 517 backend from inside the source tree";
24     license = lib.licenses.mit;
25     maintainers = [ lib.maintainers.fridh ];
26     homepage = "https://github.com/takluyver/intreehooks";
27   };