summary refs log tree commit diff
path: root/pkgs/development/python-modules/venusian/default.nix
blob: cb2b2af713de78af1436a30b575ee8b3f562950a (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
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "venusian";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "64ec8285b80b110d0ae5db4280e90e31848a59db98db1aba4d7d46f48ce91e3e";
  };

  checkInputs = [ pytest ];

  checkPhase = ''
    pytest
  '';

  meta = with stdenv.lib; {
    description = "A library for deferring decorator actions";
    homepage = http://pylonsproject.org/;
    license = licenses.bsd0;
    maintainers = with maintainers; [ garbas domenkozar ];
  };
}