pkgs: update precursorupdater
This commit is contained in:
parent
7d28a65970
commit
0a85eedd1a
@ -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;
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user