Files
nixpkgs/pkgs/development/python-modules/node-semver/default.nix
T

21 lines
468 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, pytest }:
2017-04-13 01:39:18 +02:00
buildPythonPackage rec {
version = "0.6.1";
2017-04-13 01:39:18 +02:00
pname = "node-semver";
checkInputs = [ pytest ];
2017-04-13 01:39:18 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "1dv6mjsm67l1razcgmq66riqmsb36wns17mnipqr610v0z0zf5j0";
2017-04-13 01:39:18 +02:00
};
meta = with stdenv.lib; {
homepage = https://github.com/podhmo/python-semver;
description = "A port of node-semver";
license = licenses.mit;
platforms = platforms.all;
};
}