aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/parso/default.nix
blob: f5ecb64d23215568ed1811e3a67cf2deddaa11d3 (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.3.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "68406ebd7eafe17f8e40e15a84b56848eccbf27d7c1feb89e93d8fca395706db";
  };

  checkInputs = [ pytest ];

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

}