Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 487 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, case, pytest, pythonOlder }: 3 4buildPythonPackage rec { 5 pname = "vine"; 6 version = "1.3.0"; 7 8 disable = pythonOlder "2.7"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "133ee6d7a9016f177ddeaf191c1f58421a1dcc6ee9a42c58b34bed40e1d2cd87"; 13 }; 14 15 buildInputs = [ case pytest ]; 16 17 meta = with stdenv.lib; { 18 description = "Python promises"; 19 homepage = "https://github.com/celery/vine"; 20 license = licenses.bsd3; 21 }; 22}