2018-12-02 14:52:12 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "dpt-rp1-py";
|
2021-12-17 13:09:46 +01:00
|
|
|
version = "0.1.15";
|
2018-12-02 14:52:12 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "janten";
|
|
|
|
repo = pname;
|
2021-03-07 03:49:14 +01:00
|
|
|
rev = "v${version}";
|
2021-12-17 13:09:46 +01:00
|
|
|
sha256 = "0kmhsx6n3wjzqcvfnpvdxiiwzxr51khgrl0kgaaas8hwq246l65d";
|
2018-12-02 14:52:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
2021-03-07 03:49:14 +01:00
|
|
|
anytree
|
|
|
|
fusepy
|
2018-12-02 14:52:12 +01:00
|
|
|
httpsig
|
|
|
|
pbkdf2
|
2021-03-07 03:49:14 +01:00
|
|
|
pyyaml
|
|
|
|
requests
|
2021-03-29 00:31:09 +02:00
|
|
|
setuptools
|
2021-03-07 03:49:14 +01:00
|
|
|
tqdm
|
2018-12-02 14:52:12 +01:00
|
|
|
urllib3
|
2021-03-07 03:49:14 +01:00
|
|
|
zeroconf
|
2018-12-02 14:52:12 +01:00
|
|
|
];
|
|
|
|
|
2021-03-29 00:31:09 +02:00
|
|
|
pythonImportsCheck = [ "dptrp1" ];
|
|
|
|
|
2018-12-02 14:52:12 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/janten/dpt-rp1-py";
|
2018-12-02 14:52:12 +01:00
|
|
|
description = "Python script to manage Sony DPT-RP1 without Digital Paper App";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mt-caret ];
|
2021-10-21 15:08:50 +02:00
|
|
|
mainProgram = "dptrp1";
|
2018-12-02 14:52:12 +01:00
|
|
|
};
|
|
|
|
}
|