aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/parso/default.nix
blob: c6a15b8c99fc1510fd35b75c887ca53569586ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "parso";
  version = "0.5.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "55cf25df1a35fd88b878715874d2c4dc1ad3f0eebd1e0266a67e1f55efccfbe1";
  };

  checkInputs = [ pytest ];

  meta = {
    description = "A Python Parser";
    homepage = "https://github.com/davidhalter/parso";
    license = lib.licenses.mit;
  };

}