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

25 lines
424 B
Nix
Raw Normal View History

2017-10-25 11:04:35 -07:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "parso";
2019-12-19 11:31:17 -08:00
version = "0.5.2";
2017-10-25 11:04:35 -07:00
src = fetchPypi {
inherit pname version;
2019-12-19 11:31:17 -08:00
sha256 = "55cf25df1a35fd88b878715874d2c4dc1ad3f0eebd1e0266a67e1f55efccfbe1";
2017-10-25 11:04:35 -07:00
};
checkInputs = [ pytest ];
meta = {
description = "A Python Parser";
homepage = "https://github.com/davidhalter/parso";
2017-10-25 11:04:35 -07:00
license = lib.licenses.mit;
};
2018-05-24 03:19:19 -07:00
}