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

Commits on Nov 26, 2018

  1. pythonPackages.yattag: init at 1.10.1 (#51056)

    * pythonPackages.yattag: init at 1.10.1
    
    * pythonPackages.yattag: add license
    ryan4729 authored and Ma27 committed Nov 26, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    5095c08 View commit details
Showing with 19 additions and 0 deletions.
  1. +17 −0 pkgs/development/python-modules/yattag/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
17 changes: 17 additions & 0 deletions pkgs/development/python-modules/yattag/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "yattag";
version = "1.10.1";

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

meta = with lib; {
description = "Generate HTML or XML in a pythonic way. Pure python alternative to web template engines. Can fill HTML forms with default values and error messages.";
license = [ licenses.lgpl21 ];
homepage = http://www.yattag.org/;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -4980,6 +4980,8 @@ in {

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

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

z3 = (toPythonModule (pkgs.z3.override {
inherit python;
})).python;