mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
Merge pull request #205402 from adisbladis/python3-calver-init
python3.pkgs.calver: init at 2022.6.26
This commit is contained in:
commit
6f493a530f
24
pkgs/development/python-modules/calver/default.nix
Normal file
24
pkgs/development/python-modules/calver/default.nix
Normal 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 = [ ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user