25 lines
453 B
Nix
25 lines
453 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pytest
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "parso";
|
||
|
version = "0.1.0";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "c5279916bb417aa2bf634648ff895cf35dce371d7319744884827bfad06f8d7b";
|
||
|
};
|
||
|
|
||
|
checkInputs = [ pytest ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A Python Parser";
|
||
|
homepage = https://github.com/davidhalter/parso;
|
||
|
license = lib.licenses.mit;
|
||
|
};
|
||
|
|
||
|
}
|