about summary refs log tree commit diff
path: root/pkgs/development/python-modules/luddite
diff options
context:
space:
mode:
authorAngus Trau <me@angus.ws>2021-07-26 10:53:29 +1000
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-27 22:06:47 -0700
commit87f2965a8bf4ee78fc6bc018a2f445b01547b77c (patch)
tree14a16769521ff379ff7e0cbbabe7bd79a57b87f0 /pkgs/development/python-modules/luddite
parent21aa54ea8d60f845ea6b11c03d932f6dd335c0c3 (diff)
python3Packages.luddite: init at 1.0.2
Diffstat (limited to 'pkgs/development/python-modules/luddite')
-rw-r--r--pkgs/development/python-modules/luddite/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/luddite/default.nix b/pkgs/development/python-modules/luddite/default.nix
new file mode 100644
index 0000000000000..7e8a1c5dfedd0
--- /dev/null
+++ b/pkgs/development/python-modules/luddite/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, setuptools
+, pytestCheckHook
+, pytest-socket
+, pytest-mock
+}:
+
+buildPythonPackage rec {
+  pname = "luddite";
+  version = "1.0.2";
+
+  src = fetchFromGitHub {
+    owner = "jumptrading";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "8/7uwO5HLhyXYt+T6VUO/O7TN9+FfRlT8y0r5+CJ/l4=";
+  };
+
+  postPatch = ''
+    substituteInPlace pytest.ini \
+      --replace "--cov=luddite --cov-report=html --cov-report=term --no-cov-on-fail" ""
+  '';
+
+  propagatedBuildInputs = [ setuptools ];
+
+  checkInputs = [ pytestCheckHook pytest-socket pytest-mock ];
+  pythonImportsCheck = [ "luddite" ];
+
+  meta = with lib; {
+    description = "Checks for out-of-date package versions";
+    homepage = "https://github.com/jumptrading/luddite";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ angustrau ];
+  };
+}