depot/third_party/nixpkgs/pkgs/development/python-modules/node-semver/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
460 B
Nix

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