pythonPackages.pyctr: init at 0.6.0

This commit is contained in:
Riley Inman 2022-02-23 20:22:13 -05:00 committed by Jonathan Ringer
parent 5c83eaa1a1
commit 377543b67f
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, pycryptodomex }:
buildPythonPackage rec {
pname = "pyctr";
version = "0.6.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-05lMcsIeJIHI3LwHQTjr4M+bn1FG+GQscuGq34XxjK8=";
};
propagatedBuildInputs = [ pycryptodomex ];
pythonImportsCheck = [ "pyctr" ];
meta = with lib; {
description = "Python library to interact with Nintendo 3DS files";
license = licenses.mit;
maintainers = with maintainers; [ rileyinman ];
homepage = "https://github.com/ihaveamac/pyctr";
};
}

View File

@ -6769,6 +6769,8 @@ in {
pyct = callPackage ../development/python-modules/pyct { };
pyctr = callPackage ../development/python-modules/pyctr { };
pycuda = callPackage ../development/python-modules/pycuda {
cudatoolkit = pkgs.cudatoolkit;
inherit (pkgs.stdenv) mkDerivation;