pythonPackages.semver: init at 2.2.1

This commit is contained in:
Nicolas Pouillard 2016-01-21 23:31:39 +01:00
parent aa10944813
commit 9a547777e9
No known key found for this signature in database
GPG key ID: 10C40A56EADFABBA

View file

@ -25034,6 +25034,23 @@ in modules // {
};
};
semver = buildPythonPackage rec {
name = "semver-${version}";
version = "2.2.1";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/s/semver/${name}.tar.gz";
sha256 = "161gvsfpw0l8lnf1v19rvqc8b9f8n70cc8ppya4l0n6rwc1c1n4m";
};
meta = {
description = "Python package to work with Semantic Versioning (http://semver.org/)";
homepage = "https://github.com/k-bx/python-semver";
license = licenses.bsd3;
maintainers = with maintainers; [ np ];
};
};
ed25519 = buildPythonPackage rec {
name = "ed25519-${version}";
version = "1.4";