summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/plaster-pastedeploy/default.nix
blob: 05e7a02e49b777db749f28a8dd91aa7451c107fe (plain)
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
30
31
32
33
34
{
  lib,
  buildPythonPackage,
  fetchPypi,
  plaster,
  pastedeploy,
  pytestCheckHook,
}:

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

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

  propagatedBuildInputs = [
    plaster
    pastedeploy
  ];

  nativeCheckInputs = [ pytestCheckHook ];

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