Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 29 lines 567 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pytest 5, pytestcov 6}: 7 8buildPythonPackage rec { 9 pname = "venusian"; 10 version = "3.0.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38"; 15 }; 16 17 checkInputs = [ pytest pytestcov ]; 18 19 checkPhase = '' 20 pytest 21 ''; 22 23 meta = with stdenv.lib; { 24 description = "A library for deferring decorator actions"; 25 homepage = https://pylonsproject.org/; 26 license = licenses.bsd0; 27 maintainers = with maintainers; [ domenkozar ]; 28 }; 29}