mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
233f87bf5f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-node-semver/versions
21 lines
468 B
Nix
21 lines
468 B
Nix
{ stdenv, fetchPypi, buildPythonPackage, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.7.0";
|
|
pname = "node-semver";
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1p7ink1wajkc31r05k1yn37gk377033a9vhin8v4j757d4ha1f91";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/podhmo/python-semver;
|
|
description = "A port of node-semver";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|