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

buildPythonPackage rec {
  pname = "pastedeploy";
  version = "2.1.1";

  src = fetchFromGitHub {
    owner = "Pylons";
    repo = pname;
    rev = version;
    sha256 = "sha256-9/8aM/G/EdapCZJlx0ZPzNbmw2uYjA1zGbNWJAWoeCU=";
  };

  checkInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Load, configure, and compose WSGI applications and servers";
    homepage = "https://github.com/Pylons/pastedeploy";
    license = licenses.mit;
    maintainers = teams.openstack.members;
  };
}