pythonPackages.node-semver: init at 0.1.1

This commit is contained in:
mucaho
2017-04-13 01:39:18 +02:00
parent acf45e0f9c
commit fe2ced1ea8
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchPypi, buildPythonPackage, pytest, tox }:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "0.1.1";
pname = "node-semver";
buildInputs = [ pytest tox ];
src = fetchPypi {
inherit pname version;
sha256 = "1b3xiqgl436q33grbkh4chpfchl8i2dmcpggbb2q4vgv3vjy97p2";
};
meta = with stdenv.lib; {
homepage = https://github.com/podhmo/python-semver;
description = "A port of node-semver";
license = licenses.mit;
platforms = platforms.all;
};
}