Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / linecache2 / default.nix
blob4231ed43ad5b61bda82a3dcb87fef7b5f9e6d428
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pbr
5 }:
7 buildPythonPackage rec {
8   pname = "linecache2";
9   version = "1.0.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb";
14   };
16   buildInputs = [ pbr ];
17   # circular dependencies for tests
18   doCheck = false;
20   meta = with lib; {
21     description = "A backport of linecache to older supported Pythons";
22     homepage = "https://github.com/testing-cabal/linecache2";
23     license = licenses.psfl;
24   };