mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 03:25:36 +00:00
pythonPackages.power: refactor move to python-modules
This commit is contained in:
parent
1654bd1865
commit
46d331ba8d
24
pkgs/development/python-modules/power/default.nix
Normal file
24
pkgs/development/python-modules/power/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "power";
|
||||
version = "1.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0";
|
||||
};
|
||||
|
||||
# Tests can't work because there is no power information available.
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Cross-platform system power status information";
|
||||
homepage = https://github.com/Kentzo/Power;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
@ -4342,23 +4342,7 @@ in {
|
||||
|
||||
pushbullet = callPackage ../development/python-modules/pushbullet { };
|
||||
|
||||
power = buildPythonPackage rec {
|
||||
name = "power-1.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/power/${name}.tar.gz";
|
||||
sha256 = "7d7d60ec332acbe3a7d00379b45e39abf650bf7ee311d61da5ab921f52f060f0";
|
||||
};
|
||||
|
||||
# Tests can't work because there is no power information available.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Cross-platform system power status information";
|
||||
homepage = https://github.com/Kentzo/Power;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
power = callPackage ../development/python-modules/power { };
|
||||
|
||||
# added 2018-05-23, can be removed once 18.09 is branched off
|
||||
udiskie = throw "pythonPackages.udiskie has been replaced by udiskie";
|
||||
|
Loading…
Reference in New Issue
Block a user