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-06-06 06:47:21 +00:00
version = "0.7.0";
2017-10-25 18:04:35 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:21 +00:00
sha256 = "908e9fae2144a076d72ae4e25539143d40b8e3eafbaeae03c1bfe226f4cdf12c";
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
}