mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
Merge pull request #127976 from AndersonTorres/quick-patch
python3Packages.milc: 1.3.0 -> 1.4.2; python3Packages.hid: init at 1.0.4
This commit is contained in:
commit
0c17239639
34
pkgs/development/python-modules/hid/default.nix
Normal file
34
pkgs/development/python-modules/hid/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, hidapi
|
||||||
|
, nose
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hid";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-9hsDgvN6M0vIuoYEvIS5SHXuT1lPu6+CssOz6CeIP8E=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ hidapi ];
|
||||||
|
|
||||||
|
checkInputs = [ nose ];
|
||||||
|
|
||||||
|
postPatch = lib.optionalString stdenv.isLinux ''
|
||||||
|
hidapi=${hidapi}/lib/
|
||||||
|
test -d $hidapi || { echo "ERROR: $hidapi doesn't exist, please update/fix this build expression."; exit 1; }
|
||||||
|
sed -i -e "s|libhidapi|$hidapi/libhidapi|" hid/__init__.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "hidapi bindings in ctypes";
|
||||||
|
homepage = "https://github.com/apmorton/pyhidapi";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
};
|
||||||
|
}
|
@ -4,29 +4,33 @@
|
|||||||
, appdirs
|
, appdirs
|
||||||
, argcomplete
|
, argcomplete
|
||||||
, colorama
|
, colorama
|
||||||
|
, halo
|
||||||
, nose2
|
, nose2
|
||||||
, semver
|
, semver
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "milc";
|
pname = "milc";
|
||||||
version = "1.3.0";
|
version = "1.4.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "clueboard";
|
owner = "clueboard";
|
||||||
repo = "milc";
|
repo = "milc";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-koyOBz+pB/vkTHOR1p77ACO11/ULDIBzqsszUUpnE88=";
|
sha256 = "sha256-aX6cTpIN9+9xuEGYHVlM5SjTPLcudJFEuOI4CiN3byE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ appdirs argcomplete colorama ];
|
propagatedBuildInputs = [
|
||||||
|
appdirs
|
||||||
|
argcomplete
|
||||||
|
colorama
|
||||||
|
halo
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ nose2 semver ];
|
checkInputs = [
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
patchShebangs example hello
|
|
||||||
nose2
|
nose2
|
||||||
'';
|
semver
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "milc" ];
|
pythonImportsCheck = [ "milc" ];
|
||||||
|
|
||||||
|
@ -3230,6 +3230,10 @@ in {
|
|||||||
|
|
||||||
hickle = callPackage ../development/python-modules/hickle { };
|
hickle = callPackage ../development/python-modules/hickle { };
|
||||||
|
|
||||||
|
hid = callPackage ../development/python-modules/hid {
|
||||||
|
inherit (pkgs) hidapi;
|
||||||
|
};
|
||||||
|
|
||||||
hidapi = callPackage ../development/python-modules/hidapi {
|
hidapi = callPackage ../development/python-modules/hidapi {
|
||||||
inherit (pkgs) udev libusb1;
|
inherit (pkgs) udev libusb1;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user