about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/plaster-pastedeploy/default.nix
blob: 9e6263351daaa98d9a11610e395dd88574f11abc (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
29
{ lib
, buildPythonPackage
, fetchPypi
, plaster
, pastedeploy
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "plaster-pastedeploy";
  version = "1.0.1";

  src = fetchPypi {
    pname = "plaster_pastedeploy";
    inherit version;
    hash = "sha256-viYubS5BpyZIddqi/ihQy7BhVyi83JKCj9xyc244FBI=";
  };

  propagatedBuildInputs = [ plaster pastedeploy ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "PasteDeploy binding to the plaster configuration loader";
    homepage = "https://github.com/Pylons/plaster_pastedeploy";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}