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: 423f4f478ed5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05f368b60a68
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 4, 2018

  1. Copy the full SHA
    05f368b View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/development/python-modules/sslib/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/sslib/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
pname = "sslib";
version = "0.2.0";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "0b5zrjkvx4klmv57pzhcmvbkdlyn745mn02k7hp811hvjrhbz417";
};

# No tests available
doCheck = false;

meta = with stdenv.lib; {
homepage = https://github.com/jqueiroz/python-sslib;
description = "A Python3 library for sharing secrets";
license = licenses.mit;
maintainers = with maintainers; [ jqueiroz ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -662,6 +662,8 @@ in {

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

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

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

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