3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/parso/default.nix

25 lines
424 B
Nix
Raw Normal View History

2017-10-25 19:04:35 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2020-07-31 09:56:42 +01:00
version = "0.7.1";
2017-10-25 19:04:35 +01:00
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:42 +01:00
sha256 = "caba44724b994a8a5e086460bb212abc5a8bc46951bf4a9a1210745953622eb9";
2017-10-25 19:04:35 +01:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = "https://github.com/davidhalter/parso";
2017-10-25 19:04:35 +01:00
license = lib.licenses.mit;
};
2018-05-24 11:19:19 +01:00
}