Skip to content

Commit

Permalink
highctidh: init at 1.0.2023121800
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzleutgeb committed Dec 22, 2023
1 parent a3cfade commit 7e68f03
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/by-name/highctidh/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
lib,
python3,
fetchgit,
}:
with builtins; let
python = python3;
in
python.pkgs.buildPythonApplication rec {
pname = "highctidh";
version = "1.0.2023121800";
format = "pyproject";

src = fetchgit {
url = "https://codeberg.org/vula/highctidh";
rev = "v${version}";
hash = "sha256-83zTz5iBF/ApJV2hnsT2DfN/T36f73MrXmhLDJa5Z8I=";
};

postPatch = ''
patchShebangs test.sh
mkdir -p build/tmp
'';

propagatedBuildInputs = with python.pkgs; [
setuptools
build
];

nativeBuildInputs = propagatedBuildInputs;

doCheck = true;

meta = with lib; {
description = "Fork of high-ctidh as as a portable shared library with Python bindings.";
homepage = "https://codeberg.org/vula/highctidh";
license = licenses.gpl3;
maintainers = with maintainers; [lorenzleutgeb];
};
}

0 comments on commit 7e68f03

Please sign in to comment.