summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-04-23 08:34:53 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-04-23 08:34:53 +0200
commiteca2e5722b9d045b927fb83d6dfd355bcd73bbe6 (patch)
treeba4fecf37abb9600d62c58e174c508eaed0f8446 /pkgs/development/python-modules
parent1b8a657cc0d5911932eb6d7f3cb1edff9eaac19e (diff)
python312Packages.crc: refactor
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/crc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/crc/default.nix b/pkgs/development/python-modules/crc/default.nix
index ebd1d5632f60..c3983be0efef 100644
--- a/pkgs/development/python-modules/crc/default.nix
+++ b/pkgs/development/python-modules/crc/default.nix
@@ -20,7 +20,7 @@ buildPythonPackage rec {
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
};
- nativeBuildInputs = [
+ build-system = [
poetry-core
];
@@ -37,11 +37,11 @@ buildPythonPackage rec {
];
meta = with lib; {
- changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
description = "Python module for calculating and verifying predefined & custom CRC's";
- mainProgram = "crc";
homepage = "https://nicoretti.github.io/crc/";
+ changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ jleightcap ];
+ mainProgram = "crc";
};
}