Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 200422c91bf6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a9e12e67777
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 19, 2018

  1. Copy the full SHA
    2f629c1 View commit details

Commits on Nov 29, 2018

  1. Merge pull request #50655 from MatrixAI/python-mnist

    python-mnist: init at 0.6
    c0bw3b authored Nov 29, 2018
    Copy the full SHA
    1a9e12e View commit details
Showing with 20 additions and 0 deletions.
  1. +18 −0 pkgs/development/python-modules/python-mnist/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
18 changes: 18 additions & 0 deletions pkgs/development/python-modules/python-mnist/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "python-mnist";
version = "0.6";

src = fetchPypi {
inherit pname version;
sha256 = "5d59a44335eccb4b310efb2ebb76f44e8588a1732cfb4923f4a502b61d8b653a";
};

meta = with stdenv.lib; {
homepage = https://github.com/sorki/python-mnist;
description = "Simple MNIST data parser written in Python";
license = licenses.bsd3;
maintainers = with maintainers; [ cmcdragonkai ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -639,6 +639,8 @@ in {

python-ldap-test = callPackage ../development/python-modules/python-ldap-test { };

python-mnist = callPackage ../development/python-modules/python-mnist { };

python-igraph = callPackage ../development/python-modules/python-igraph {
pkgconfig = pkgs.pkgconfig;
igraph = pkgs.igraph;