blob: 7a67fdf727b3dbd4b330bb750302e72cfcaafa8f (
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
|
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
}:
buildPythonPackage rec {
pname = "venusian";
version = "3.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38";
};
checkInputs = [ pytest pytestcov ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "A library for deferring decorator actions";
homepage = https://pylonsproject.org/;
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}
|