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

25 lines
422 B
Nix
Raw Normal View History

2017-10-25 20:04:35 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2018-07-22 12:15:15 +02:00
version = "0.3.1";
2017-10-25 20:04:35 +02:00
src = fetchPypi {
inherit pname version;
2018-07-22 12:15:15 +02:00
sha256 = "35704a43a3c113cce4de228ddb39aab374b8004f4f2407d070b6a2ca784ce8a2";
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
}