about summary refs log tree commit diff
path: root/pkgs/development/python-modules/platformdirs/2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/platformdirs/2.nix')
-rw-r--r--pkgs/development/python-modules/platformdirs/2.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/development/python-modules/platformdirs/2.nix b/pkgs/development/python-modules/platformdirs/2.nix
deleted file mode 100644
index 6fe2bcbde60a6..0000000000000
--- a/pkgs/development/python-modules/platformdirs/2.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, appdirs
-, buildPythonPackage
-, fetchFromGitHub
-, platformdirs
-, pytest-mock
-, pytestCheckHook
-, pythonOlder
-, setuptools-scm
-}:
-
-buildPythonPackage rec {
-  pname = "platformdirs";
-  version = "2.0.2";
-
-  src = fetchFromGitHub {
-    owner = pname;
-    repo = pname;
-    rev = version;
-    sha256 = "sha256-yCvfOPuX9hbQO9gbFHfeu+dGH+Vb9FM7wng1XU2D8hE=";
-  };
-
-  SETUPTOOLS_SCM_PRETEND_VERSION = version;
-
-  nativeBuildInputs = [
-    setuptools-scm
-  ];
-
-  checkInputs = [
-    appdirs
-    pytest-mock
-    pytestCheckHook
-  ];
-
- pythonImportsCheck = [ "platformdirs" ];
-
-  meta = with lib; {
-    description = "Python module for determining appropriate platform-specific directories";
-    homepage = "https://platformdirs.readthedocs.io/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ fab ];
-  };
-}