python3.pkgs.calver: init at 2022.6.26

This commit is contained in:
adisbladis 2022-12-10 17:26:17 +13:00
parent 116828f769
commit 9928825c02
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
let
pname = "calver";
version = "2022.6.26";
in
buildPythonPackage {
inherit pname version;
src = fetchPypi {
inherit pname version;
hash = "sha256-4FSTo7F1F+8XSPvmENoR8QSF+qfEFrnTP9SlLXSJT4s=";
};
meta = {
description = "Setuptools extension for CalVer package versions";
homepage = "https://github.com/di/calver";
license = lib.licenses.asl20;
maintainers = [ ];
};
}

View File

@ -1512,6 +1512,8 @@ self: super: with self; {
caldav = callPackage ../development/python-modules/caldav { };
calver = callPackage ../development/python-modules/calver { };
callee = callPackage ../development/python-modules/callee { };
calmjs-parse = callPackage ../development/python-modules/calmjs-parse { };