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

27 lines
578 B
Nix
Raw Normal View History

2017-10-25 18:04:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
2017-10-25 18:04:35 +00:00
}:
buildPythonPackage rec {
pname = "parso";
2020-08-16 17:31:09 +00:00
version = "0.8.0";
disabled = pythonOlder "3.6";
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 = [ pytestCheckHook ];
2017-10-25 18:04:35 +00:00
meta = with lib; {
2017-10-25 18:04:35 +00:00
description = "A Python Parser";
homepage = "https://parso.readthedocs.io/en/latest/";
changelog = "https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst";
license = licenses.mit;
2017-10-25 18:04:35 +00:00
};
2018-05-24 10:19:19 +00:00
}