Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, nose 5, six 6, paste 7, PasteDeploy 8, cheetah 9}: 10 11buildPythonPackage rec { 12 version = "3.2.0"; 13 pname = "PasteScript"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "9b0f5c0f1c6a510a353fa7c3dc4fdaab9071462d60d24573de76a001fbc172ac"; 18 }; 19 20 buildInputs = [ nose ]; 21 propagatedBuildInputs = [ six paste PasteDeploy cheetah ]; 22 23 doCheck = false; 24 25 meta = with stdenv.lib; { 26 description = "A pluggable command-line frontend, including commands to setup package file layouts"; 27 homepage = "https://github.com/cdent/pastescript/"; 28 license = licenses.mit; 29 }; 30 31}