2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pytest }:
|
2017-04-13 01:39:18 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-08-20 12:25:56 +02:00
|
|
|
version = "0.7.0";
|
2017-04-13 01:39:18 +02:00
|
|
|
pname = "node-semver";
|
|
|
|
|
2018-07-23 11:51:01 +02:00
|
|
|
checkInputs = [ pytest ];
|
2017-04-13 01:39:18 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 12:25:56 +02:00
|
|
|
sha256 = "1p7ink1wajkc31r05k1yn37gk377033a9vhin8v4j757d4ha1f91";
|
2017-04-13 01:39:18 +02:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|