python.pkgs: updates

This commit is contained in:
Frederik Rietdijk
2017-10-25 20:04:35 +02:00
parent b601d87cd6
commit 7ce848309e
133 changed files with 366 additions and 294 deletions

View File

@@ -0,0 +1,25 @@
{ 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;
};
}