diff options
Diffstat (limited to 'pkgs/development/python-modules/crccheck/default.nix')
-rw-r--r-- | pkgs/development/python-modules/crccheck/default.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/crccheck/default.nix b/pkgs/development/python-modules/crccheck/default.nix index 0a9302b8841d..63f6e570d71a 100644 --- a/pkgs/development/python-modules/crccheck/default.nix +++ b/pkgs/development/python-modules/crccheck/default.nix @@ -1,14 +1,16 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, isPy3k -, unittestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + isPy3k, + unittestCheckHook, }: let pname = "crccheck"; version = "1.3.0"; -in buildPythonPackage { +in +buildPythonPackage { inherit pname version; format = "setuptools"; @@ -21,15 +23,13 @@ in buildPythonPackage { hash = "sha256-nujt3RWupvCtk7gORejtSwqqVjW9VwztOVGXBHW9T+k="; }; - nativeCheckInputs = [ - unittestCheckHook - ]; + nativeCheckInputs = [ unittestCheckHook ]; meta = with lib; { description = "Python library for CRCs and checksums"; homepage = "https://github.com/MartinScharrer/crccheck"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } |