21 lines
503 B
Nix
21 lines
503 B
Nix
|
{ lib, fetchPypi, buildPythonPackage }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "semantic_version";
|
||
|
version = "2.8.4";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "352459f640f3db86551d8054d1288608b29a96e880c7746f0a59c92879d412a3";
|
||
|
};
|
||
|
|
||
|
# ModuleNotFoundError: No module named 'tests'
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A library implementing the 'SemVer' scheme";
|
||
|
license = licenses.bsdOriginal;
|
||
|
maintainers = with maintainers; [ layus makefu ];
|
||
|
};
|
||
|
}
|