summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorEdmund Wu <22758444+eadwu@users.noreply.github.com>2018-11-01 05:56:56 -0400
committerRobert Schütz <rschuetz17@gmail.com>2018-11-01 10:56:56 +0100
commitb3bff5c249aecff11769ef0dbd9ae2747163d3ac (patch)
tree75e04d478891e933fc1410ffb162ff453fddd47b /pkgs/development/python-modules
parent0111c7d8515d229cc19b487bb0c2e62571413e3c (diff)
downloadnixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar.gz
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar.bz2
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar.lz
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar.xz
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.tar.zst
nixlib-b3bff5c249aecff11769ef0dbd9ae2747163d3ac.zip
pythonPackages.trueskill: init at 0.4.5 (#49342)
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/trueskill/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/trueskill/default.nix b/pkgs/development/python-modules/trueskill/default.nix
new file mode 100644
index 000000000000..2106e4d2e76c
--- /dev/null
+++ b/pkgs/development/python-modules/trueskill/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, six }:
+
+buildPythonPackage rec {
+  pname = "trueskill";
+  version = "0.4.5";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1fv7g1szyjykja9mzax2w4js7jm2z7wwzgnr5dqrsdi84j6v8qlx";
+  };
+
+  propagatedBuildInputs = [
+    six
+  ];
+
+  # Can't build distribute, see https://github.com/NixOS/nixpkgs/pull/49340
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "The video game rating system";
+    homepage = https://trueskill.org;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [
+      eadwu
+    ];
+  };
+}