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";
2019-02-14 08:37:22 +01:00
version = "0.3.4";
2017-10-25 20:04:35 +02:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:22 +01:00
sha256 = "68406ebd7eafe17f8e40e15a84b56848eccbf27d7c1feb89e93d8fca395706db";
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
}