diff options
Diffstat (limited to 'pkgs/development/python-modules/digi-xbee/default.nix')
-rw-r--r-- | pkgs/development/python-modules/digi-xbee/default.nix | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/digi-xbee/default.nix b/pkgs/development/python-modules/digi-xbee/default.nix index 7514ba8609d0..319239b24123 100644 --- a/pkgs/development/python-modules/digi-xbee/default.nix +++ b/pkgs/development/python-modules/digi-xbee/default.nix @@ -1,17 +1,28 @@ -{ buildPythonPackage, fetchPypi, isPy27, pyserial, srp, lib }: +{ + buildPythonPackage, + fetchPypi, + isPy27, + pyserial, + srp, + lib, +}: buildPythonPackage rec { pname = "digi-xbee"; - version = "1.4.1"; + version = "1.5.0"; format = "setuptools"; disabled = isPy27; src = fetchPypi { - inherit pname version; - sha256 = "3b10e749431f406d80c189d872f4673b8d3cd510f7b411f817780a0e72499cd2"; + pname = "digi_xbee"; + inherit version; + hash = "sha256-amUrhHIpeRHuShD0cxb2sbbRTpJQZ9/b8otsa1Bo+bI="; }; - propagatedBuildInputs = [ pyserial srp ]; + propagatedBuildInputs = [ + pyserial + srp + ]; # Upstream doesn't contain unit tests, only functional tests which require specific hardware doCheck = false; |