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

25 lines
424 B
Nix
Raw Normal View History

2017-10-25 11:04:35 -07:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2020-06-05 23:47:21 -07:00
version = "0.7.0";
2017-10-25 11:04:35 -07:00
src = fetchPypi {
inherit pname version;
2020-06-05 23:47:21 -07:00
sha256 = "908e9fae2144a076d72ae4e25539143d40b8e3eafbaeae03c1bfe226f4cdf12c";
2017-10-25 11:04:35 -07:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = "https://github.com/davidhalter/parso";
2017-10-25 11:04:35 -07:00
license = lib.licenses.mit;
};
2018-05-24 03:19:19 -07:00
}