Skip to content

Commit

Permalink
python3Packages.crcelk: init at 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
t4ccer committed Dec 31, 2023
1 parent 5ff137a commit 41f8739
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/crcelk/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ buildPythonPackage
, fetchFromGitHub
, pythonOlder
, lib
}:

buildPythonPackage rec {
pname = "crcelk";
version = "1.3";

src = fetchFromGitHub {
owner = "zeroSteiner";
repo = "crcelk";
rev = "v${version}";
hash = "sha256-eJt0qcG0ejTQJyjOSi6Au2jH801KOMnk7f6cLbd7ADw=";
};

disabled = pythonOlder "3.7";

pythonImportsCheck = [ "crcelk" ];

meta = with lib; {
homepage = "https://github.com/zeroSteiner/crcelk";
description = "An updated fork of the CrcMoose module for recent versions of Python";
license = licenses.mit;
maintainers = with maintainers; [ t4ccer ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2400,6 +2400,8 @@ self: super: with self; {

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

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

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

credstash = callPackage ../development/python-modules/credstash { };
Expand Down

0 comments on commit 41f8739

Please sign in to comment.