python.semantic-version: 2.4.2 -> 2.6

This commit is contained in:
makefu
2017-09-29 15:03:44 +02:00
committed by Orivej Desh
parent 8c0a37f857
commit bc45bc3d63
2 changed files with 22 additions and 16 deletions

View File

@@ -0,0 +1,21 @@
{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "semantic_version";
version = "2.6.0";
name = "${pname}${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1h2l9xyg1zzsda6kjcmfcgycbvrafwci283vcr1v5sbk01l2hhra";
};
# 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 ];
};
}