2020-04-24 23:36:52 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "dpt-rp1-py";
|
2022-01-03 16:56:52 +00:00
|
|
|
version = "0.1.16";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "janten";
|
|
|
|
repo = pname;
|
2021-03-09 03:18:52 +00:00
|
|
|
rev = "v${version}";
|
2022-01-03 16:56:52 +00:00
|
|
|
sha256 = "0zvf09b9rzpx5b0w81ziqd7v321hfhgsgvshdx23karj2hf75bvj";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2021-03-09 03:18:52 +00:00
|
|
|
anytree
|
|
|
|
fusepy
|
2020-04-24 23:36:52 +00:00
|
|
|
httpsig
|
|
|
|
pbkdf2
|
2021-03-09 03:18:52 +00:00
|
|
|
pyyaml
|
|
|
|
requests
|
2021-03-20 04:20:00 +00:00
|
|
|
setuptools
|
2021-03-09 03:18:52 +00:00
|
|
|
tqdm
|
2020-04-24 23:36:52 +00:00
|
|
|
urllib3
|
2021-03-09 03:18:52 +00:00
|
|
|
zeroconf
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
pythonImportsCheck = [ "dptrp1" ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/janten/dpt-rp1-py";
|
|
|
|
description = "Python script to manage Sony DPT-RP1 without Digital Paper App";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mt-caret ];
|
2021-10-28 06:52:43 +00:00
|
|
|
mainProgram = "dptrp1";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|