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

25 lines
453 B
Nix
Raw Normal View History

2017-10-25 18:04:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2017-11-24 19:36:20 +00:00
version = "0.1.1";
2017-10-25 18:04:35 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-11-24 19:36:20 +00:00
sha256 = "5815f3fe254e5665f3c5d6f54f086c2502035cb631a91341591b5a564203cffb";
2017-10-25 18:04:35 +00:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = https://github.com/davidhalter/parso;
license = lib.licenses.mit;
};
}