about summary refs log tree commit diff
path: root/pkgs/development/python-modules/acebinf
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2020-09-19 14:02:03 +0100
committerRobert Scott <code@humanleg.org.uk>2020-09-20 12:23:18 +0100
commite61102d5c24b103d7eb075efa9c36f064c19d82d (patch)
tree8305b4a21f242181e521ca92e07fb8510b3c9c70 /pkgs/development/python-modules/acebinf
parent4543e549918e15195ddf304236c8b76307b80490 (diff)
pythonPackages.acebinf: init at 1.0.2
Diffstat (limited to 'pkgs/development/python-modules/acebinf')
-rw-r--r--pkgs/development/python-modules/acebinf/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/acebinf/default.nix b/pkgs/development/python-modules/acebinf/default.nix
new file mode 100644
index 0000000000000..78810de1740df
--- /dev/null
+++ b/pkgs/development/python-modules/acebinf/default.nix
@@ -0,0 +1,28 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pyvcf
+}:
+
+buildPythonPackage rec {
+  pname = "ACEBinf";
+  version = "1.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1168pny671l6zfm2vv1pwspnflmzi7f4v8yldjl7zlz0b9cm5zlz";
+  };
+
+  buildInputs = [ pyvcf ];
+
+  # no tests
+  doCheck = false;
+  pythonImportsCheck = [ "acebinf" ];
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/ACEnglish/acebinf";
+    description = "Collection of simple utilities used when building bioinformatics tools";
+    license = licenses.unlicense;
+    maintainers = with maintainers; [ ris ];
+  };
+}