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

21 lines
460 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib, fetchPypi, buildPythonPackage, pytest }:
2017-04-13 01:39:18 +02:00
buildPythonPackage rec {
version = "0.7.0";
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 = "1p7ink1wajkc31r05k1yn37gk377033a9vhin8v4j757d4ha1f91";
2017-04-13 01:39:18 +02:00
};
meta = with lib; {
homepage = "https://github.com/podhmo/python-semver";
2017-04-13 01:39:18 +02:00
description = "A port of node-semver";
license = licenses.mit;
platforms = platforms.all;
};
}