Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 nose, 6}: 7 8buildPythonPackage { 9 version = "0.5.3-2016-09-28"; 10 format = "setuptools"; 11 pname = "tempita"; 12 13 src = fetchFromGitHub { 14 owner = "agramfort"; 15 repo = "tempita"; 16 rev = "47414a7c6e46a9a9afe78f0bce2ea299fa84d10"; 17 sha256 = "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn"; 18 }; 19 20 buildInputs = [ nose ]; 21 22 meta = { 23 homepage = "https://github.com/agramfort/tempita"; 24 description = "Very small text templating language"; 25 license = lib.licenses.mit; 26 }; 27}