1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/misc/dpt-rp1-py/default.nix

29 lines
712 B
Nix
Raw Normal View History

2018-12-02 08:52:12 -05:00
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "dpt-rp1-py";
version = "unstable-2018-10-16";
2018-12-02 08:52:12 -05:00
src = fetchFromGitHub {
owner = "janten";
repo = pname;
rev = "4551b4432f8470de5f2ad9171105f731a6259395";
sha256 = "176y5j31aci1vpi8v6r5ki55432fbdsazh9bsyzr90im9zimkffl";
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [
httpsig
requests
pbkdf2
urllib3
];
meta = with lib; {
homepage = "https://github.com/janten/dpt-rp1-py";
2018-12-02 08:52:12 -05:00
description = "Python script to manage Sony DPT-RP1 without Digital Paper App";
license = licenses.mit;
maintainers = with maintainers; [ mt-caret ];
};
}