about summary refs log tree commit diff
path: root/pkgs/development/python-modules/devpi-common/default.nix
blob: 4a070a57873196c81cf1bfd368d0290b3ffb4beb (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
{ lib, buildPythonPackage, fetchPypi, requests, py, pytest, pytest-flakes }:

buildPythonPackage rec {
  pname = "devpi-common";
  version = "3.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "30833581d03e07d7574b2ff698d213c984777dd44dd47c45c54d31858c694c94";
  };

  propagatedBuildInputs = [ requests py ];
  checkInputs = [ pytest pytest-flakes ];

  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    homepage = https://github.com/devpi/devpi;
    description = "Utilities jointly used by devpi-server and devpi-client";
    license = licenses.mit;
    maintainers = with maintainers; [ lewo makefu ];
  };
}