about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/intreehooks/default.nix
blob: be8d3927c9ffe3bca533ff909ac8c63e19bb6a94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
  };
}