nixpkgs/pkgs/development/python-modules/parso/default.nix

25 lines
424 B
Nix
Raw Normal View History

2017-10-25 18:04:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2020-08-16 17:31:09 +00:00
version = "0.8.0";
2017-10-25 18:04:35 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:09 +00:00
sha256 = "2b6db14759c528d857eeb9eac559c2166b2554548af39f5198bdfb976f72aa64";
2017-10-25 18:04:35 +00:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = "https://github.com/davidhalter/parso";
2017-10-25 18:04:35 +00:00
license = lib.licenses.mit;
};
2018-05-24 10:19:19 +00:00
}