about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mac-alias/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/mac-alias/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/mac-alias/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/mac-alias/default.nix b/nixpkgs/pkgs/development/python-modules/mac-alias/default.nix
new file mode 100644
index 000000000000..159dfa1d89ad
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/mac-alias/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools
+}:
+
+buildPythonPackage rec {
+  pname = "mac-alias";
+  version = "2.2.2";
+  format = "pyproject";
+
+  src = fetchPypi {
+    pname = "mac_alias";
+    inherit version;
+    hash = "sha256-yZxyjrUS6VXBHxpiA6D/qIg7JlSeiv5ogEAxql2oVrc=";
+  };
+
+  nativeBuildInputs = [
+    setuptools
+  ];
+
+  # pypi package does not include tests;
+  # tests anyway require admin privileges to succeed
+  doCheck = false;
+  pythonImportsCheck = [ "mac_alias" ];
+
+  meta = with lib; {
+    homepage = "https://github.com/al45tair/mac_alias";
+    description = "Generate or read binary Alias and Bookmark records from Python code";
+    longDescription = ''
+      mac_alias lets you generate or read binary Alias and Bookmark records from Python code.
+
+      While it is written in pure Python, some OS X specific code is required
+      to generate a proper Alias or Bookmark record for a given file,
+      so this module currently is not portable to other platforms.
+    '';
+    license = licenses.mit;
+    maintainers = with maintainers; [ siriobalmelli ];
+  };
+}