mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python3Packages.pync: enable for python3 and update checkInputs
Enable pync for Python 3 and add the which package to test dependencies so that pync's tests pass.
This commit is contained in:
parent
6d1494bc66
commit
1a65e24a8c
2 changed files with 8 additions and 5 deletions
|
@ -1,22 +1,23 @@
|
|||
{ lib, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, python-dateutil
|
||||
, pkgs
|
||||
, coreutils
|
||||
, which
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "2.0.3";
|
||||
pname = "pync";
|
||||
disabled = ! isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "38b9e61735a3161f9211a5773c5f5ea698f36af4ff7f77fa03e8d1ff0caa117f";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgs.coreutils ];
|
||||
nativeBuildInputs = [ coreutils ];
|
||||
checkInputs = [ which ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
|
||||
preInstall = lib.optionalString stdenv.isDarwin ''
|
||||
|
@ -25,7 +26,7 @@ buildPythonPackage rec {
|
|||
|
||||
meta = with lib; {
|
||||
description = "Python Wrapper for Mac OS 10.8 Notification Center";
|
||||
homepage = "https://pypi.python.org/pypi/pync/1.4";
|
||||
homepage = "https://pypi.python.org/pypi/pync";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.darwin;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
|
|
|
@ -6278,7 +6278,9 @@ in {
|
|||
|
||||
pynanoleaf = callPackage ../development/python-modules/pynanoleaf { };
|
||||
|
||||
pync = callPackage ../development/python-modules/pync { };
|
||||
pync = callPackage ../development/python-modules/pync {
|
||||
inherit (pkgs) coreutils which;
|
||||
};
|
||||
|
||||
pynest2d = callPackage ../development/python-modules/pynest2d { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue