Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 504 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "extras"; 8 version = "1.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e"; 13 }; 14 15 # error: invalid command 'test' 16 doCheck = false; 17 18 meta = { 19 description = "Useful extra bits for Python - things that should be in the standard library"; 20 homepage = "https://github.com/testing-cabal/extras"; 21 license = lib.licenses.mit; 22 }; 23}