pkgs: update precursorupdater

This commit is contained in:
Aaron Bieber 2023-02-10 12:43:19 -07:00
parent 7d28a65970
commit 0a85eedd1a
No known key found for this signature in database
2 changed files with 5 additions and 7 deletions

View File

@ -253,10 +253,8 @@
inherit pkgs; inherit pkgs;
isUnstable = true; isUnstable = true;
}; };
precursorupdater = pkgs.callPackage ./pkgs/precursorupdater.nix { precursorupdater = pkgs.python3Packages.callPackage ./pkgs/precursorupdater.nix {
inherit pkgs; inherit pkgs;
inherit (pkgs.python39Packages) buildPythonPackage fetchPypi;
inherit (pkgs.python39Packages) pyusb progressbar2 requests;
}; };
kobuddy = pkgs.python3Packages.callPackage ./pkgs/kobuddy.nix { kobuddy = pkgs.python3Packages.callPackage ./pkgs/kobuddy.nix {
inherit pkgs; inherit pkgs;

View File

@ -1,14 +1,14 @@
{ lib, buildPythonPackage, fetchPypi, pyusb, progressbar2, requests, ... }: { lib, buildPythonPackage, fetchPypi, pyusb, progressbar2, requests, pycryptodome, ... }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "precursorupdater"; pname = "precursorupdater";
version = "0.0.9"; version = "0.1.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-/wjX6iVbM6gdBwRKMnM/u8F3hSGoO/mFzOqa9moOhss="; sha256 = "sha256-YWPWGQLFbHjhYbdhLvbWndsNPfWEPSD7rfN6pJdnZFs=";
}; };
propagatedBuildInputs = [ pyusb progressbar2 requests ]; propagatedBuildInputs = [ pyusb progressbar2 requests pycryptodome ];
doCheck = false; doCheck = false;