mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
25 lines
422 B
Nix
25 lines
422 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "parso";
|
|
version = "0.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "35704a43a3c113cce4de228ddb39aab374b8004f4f2407d070b6a2ca784ce8a2";
|
|
};
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
meta = {
|
|
description = "A Python Parser";
|
|
homepage = https://github.com/davidhalter/parso;
|
|
license = lib.licenses.mit;
|
|
};
|
|
|
|
}
|