nixpkgs/pkgs/tools/misc/dpt-rp1-py/default.nix

37 lines
779 B
Nix
Raw Normal View History

2018-12-02 13:52:12 +00:00
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "dpt-rp1-py";
2021-05-11 02:40:40 +00:00
version = "0.1.13";
2018-12-02 13:52:12 +00:00
src = fetchFromGitHub {
owner = "janten";
repo = pname;
rev = "v${version}";
2021-05-11 02:40:40 +00:00
sha256 = "1jgkfn5kfnx98xs0dmym1h9mv1mrzlglk7x0fzs2jlc56c18w9dk";
2018-12-02 13:52:12 +00:00
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [
anytree
fusepy
2018-12-02 13:52:12 +00:00
httpsig
pbkdf2
pyyaml
requests
setuptools
tqdm
2018-12-02 13:52:12 +00:00
urllib3
zeroconf
2018-12-02 13:52:12 +00:00
];
pythonImportsCheck = [ "dptrp1" ];
2018-12-02 13:52:12 +00:00
meta = with lib; {
homepage = "https://github.com/janten/dpt-rp1-py";
2018-12-02 13:52:12 +00:00
description = "Python script to manage Sony DPT-RP1 without Digital Paper App";
license = licenses.mit;
maintainers = with maintainers; [ mt-caret ];
};
}