about summary refs log tree commit diff
path: root/pkgs/development/python-modules/testpath
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-28 11:24:29 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:50:52 -0400
commitf8e0efb139bca25a422a5e08e57f2819a43dea9b (patch)
treedd90847c10ec9333e838fd495721a5bd6979749c /pkgs/development/python-modules/testpath
parent8a9d7350d8bfc0c89816ba76b7473c473ec119f0 (diff)
downloadnixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar.gz
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar.bz2
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar.lz
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar.xz
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.tar.zst
nixlib-f8e0efb139bca25a422a5e08e57f2819a43dea9b.zip
pythonPackages.testpath: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/testpath')
-rw-r--r--pkgs/development/python-modules/testpath/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/testpath/default.nix b/pkgs/development/python-modules/testpath/default.nix
new file mode 100644
index 000000000000..cda5abda5292
--- /dev/null
+++ b/pkgs/development/python-modules/testpath/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "testpath";
+  version = "0.3";
+  format = "wheel";
+
+  src = fetchPypi {
+    inherit pname version format;
+    sha256 = "f16b2cb3b03e1ada4fb0200b265a4446f92f3ba4b9d88ace34f51c54ab6d294e";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Test utilities for code working with files and commands";
+    license = licenses.mit;
+    homepage = https://github.com/jupyter/testpath;
+  };
+
+}