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

25 lines
410 B
Nix
Raw Normal View History

2017-10-25 20:04:35 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2019-09-04 18:59:26 +02:00
version = "0.5.1";
2017-10-25 20:04:35 +02:00
src = fetchPypi {
inherit pname version;
2019-09-04 18:59:26 +02:00
sha256 = "171a9ivhxwsd52h1cgsz40zgzpgzscn7yqb7sdjhy8m1lzj0wsv6";
2017-10-25 20:04:35 +02:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = https://github.com/davidhalter/parso;
license = lib.licenses.mit;
};
2018-05-24 12:19:19 +02:00
}