pythonPackages.vcver: init at 0.2.10
This commit is contained in:
parent
85fd984901
commit
6c13b76481
31
pkgs/development/python-modules/vcver/default.nix
Normal file
31
pkgs/development/python-modules/vcver/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub
|
||||
, packaging
|
||||
, fetchurl, python }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vcver";
|
||||
version = "0.2.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "toumorokoshi";
|
||||
repo = "vcver-python";
|
||||
rev = "c5d8a6f1f0e49bb25f5dbb07312e42cb4da096d6";
|
||||
sha256 = "1cvgs70jf7ki78338zaglaw2dkvyndmx15ybd6k4zqwwsfgk490b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
packaging
|
||||
];
|
||||
|
||||
# circular dependency on test tool uranium https://pypi.org/project/uranium/
|
||||
doCheck = false;
|
||||
|
||||
pythonImportTests = [ "vcver" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Reference Implementation of vcver";
|
||||
homepage = "https://github.com/toumorokoshi/vcver-python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
@ -4004,6 +4004,8 @@ in {
|
||||
|
||||
jsonschema = callPackage ../development/python-modules/jsonschema { };
|
||||
|
||||
vcver = callPackage ../development/python-modules/vcver { };
|
||||
|
||||
vcversioner = callPackage ../development/python-modules/vcversioner { };
|
||||
|
||||
falcon = callPackage ../development/python-modules/falcon { };
|
||||
|
Loading…
Reference in New Issue
Block a user