pythonPackages.macfsevents: init at 0.8.1
This commit is contained in:
parent
c8c0bd1fea
commit
2e333e801a
24
pkgs/development/python-modules/macfsevents/default.nix
Normal file
24
pkgs/development/python-modules/macfsevents/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, CoreFoundation, CoreServices }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "MacFSEvents";
|
||||||
|
version = "0.8.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1324b66b356051de662ba87d84f73ada062acd42b047ed1246e60a449f833e10";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ CoreFoundation CoreServices ];
|
||||||
|
|
||||||
|
# Some tests fail under nix build directory
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/malthe/macfsevents;
|
||||||
|
description = "Thread-based interface to file system observation primitives";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = [ maintainers.marsam ];
|
||||||
|
platforms = platforms.darwin;
|
||||||
|
};
|
||||||
|
}
|
@ -3136,6 +3136,10 @@ in {
|
|||||||
|
|
||||||
Mako = callPackage ../development/python-modules/Mako { };
|
Mako = callPackage ../development/python-modules/Mako { };
|
||||||
|
|
||||||
|
macfsevents = callPackage ../development/python-modules/macfsevents {
|
||||||
|
inherit (pkgs.darwin.apple_sdk.frameworks) CoreFoundation CoreServices;
|
||||||
|
};
|
||||||
|
|
||||||
manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix {};
|
manifestparser = callPackage ../development/python-modules/marionette-harness/manifestparser.nix {};
|
||||||
marionette_driver = callPackage ../development/python-modules/marionette-harness/marionette_driver.nix {};
|
marionette_driver = callPackage ../development/python-modules/marionette-harness/marionette_driver.nix {};
|
||||||
mozcrash = callPackage ../development/python-modules/marionette-harness/mozcrash.nix {};
|
mozcrash = callPackage ../development/python-modules/marionette-harness/mozcrash.nix {};
|
||||||
|
Loading…
Reference in New Issue
Block a user