Skip to content

Commit

Permalink
python3Packages.cfv: init at 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jjtt committed Nov 27, 2024
1 parent 6549d9f commit 4975574
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/cfv/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:

buildPythonPackage rec {
pname = "cfv";
version = "3.1.0";

src = fetchFromGitHub {
owner = "cfv-project";
repo = "cfv";
rev = "refs/tags/v${version}";
sha256 = "1wxf30gsijsdvhv5scgkq0bqi8qi4dgs9dwppdrca5wxgy7a8sn5";
};

meta = {
description = "Utility to verify and create a wide range of checksums";
homepage = "https://github.com/cfv-project/cfv";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ jjtt ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2182,6 +2182,8 @@ self: super: with self; {

cftime = callPackage ../development/python-modules/cftime { };

cfv = callPackage ../development/python-modules/cfv { };

cgal = callPackage ../development/python-modules/cgal {
inherit (pkgs) cgal;
};
Expand Down

0 comments on commit 4975574

Please sign in to comment.