linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / linecache2 / default.nix
blob3c2238b0875de12ba4b368da7cc8f8def299c816
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pbr
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   pname = "linecache2";
10   version = "1.0.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb";
15   };
17   buildInputs = [ pbr ];
18   # circular dependencies for tests
19   doCheck = false;
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   };