summary refs log tree commit diff
path: root/pkgs/development/python-modules/node-semver/default.nix
blob: 5ba62fb9210ecbba19d884d72c1a6967fb89588c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, 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;
  };
}