My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/node-semver/default.nix

20 lines
472 B

{ lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
version = "0.8.1";
pname = "node-semver";
checkInputs = [ pytest ];
src = fetchPypi {
inherit pname version;
sha256 = "281600d009606f4f63ddcbe148992e235b39a69937b9c20359e2f4a2adbb1e00";
};
meta = with lib; {
homepage = "https://github.com/podhmo/python-semver";
description = "A port of node-semver";
license = licenses.mit;
platforms = platforms.all;
};
}