nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 26 lines 523 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pbr 5, isPy3k 6}: 7 8buildPythonPackage rec { 9 pname = "linecache2"; 10 version = "1.0.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb"; 15 }; 16 17 buildInputs = [ pbr ]; 18 # circular dependencies for tests 19 doCheck = false; 20 21 meta = with lib; { 22 description = "A backport of linecache to older supported Pythons"; 23 homepage = "https://github.com/testing-cabal/linecache2"; 24 license = licenses.psfl; 25 }; 26}