2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pytest }:
|
2017-04-13 00:39:18 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-08-20 11:25:56 +01:00
|
|
|
version = "0.7.0";
|
2017-04-13 00:39:18 +01:00
|
|
|
pname = "node-semver";
|
|
|
|
|
2018-07-23 10:51:01 +01:00
|
|
|
checkInputs = [ pytest ];
|
2017-04-13 00:39:18 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-20 11:25:56 +01:00
|
|
|
sha256 = "1p7ink1wajkc31r05k1yn37gk377033a9vhin8v4j757d4ha1f91";
|
2017-04-13 00:39:18 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/podhmo/python-semver";
|
2017-04-13 00:39:18 +01:00
|
|
|
description = "A port of node-semver";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|