mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
python27Packages.boltons: 20.0.0 -> 20.1.0
This commit is contained in:
parent
0b54f91eac
commit
128aeca1a9
|
@ -2,21 +2,21 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "boltons";
|
pname = "boltons";
|
||||||
version = "20.0.0";
|
version = "20.1.0";
|
||||||
|
|
||||||
# No tests in PyPi Tarball
|
# No tests in PyPi Tarball
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mahmoud";
|
owner = "mahmoud";
|
||||||
repo = "boltons";
|
repo = "boltons";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0scdslqi28b899i42m4c9pvhwv3kkw4wpi3n9zm5n64ggn5ngfbz";
|
sha256 = "0mbxc2n10mlmpbwhg0byddl1i0s6rlrr6z9xm8zzmkv62136irqh";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
checkPhase = "pytest tests";
|
checkPhase = "pytest tests";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/mahmoud/boltons;
|
homepage = "https://github.com/mahmoud/boltons";
|
||||||
description = "220+ constructs, recipes, and snippets extending (and relying on nothing but) the Python standard library";
|
description = "220+ constructs, recipes, and snippets extending (and relying on nothing but) the Python standard library";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Boltons is a set of over 220 BSD-licensed, pure-Python utilities
|
Boltons is a set of over 220 BSD-licensed, pure-Python utilities
|
||||||
|
|
Loading…
Reference in a new issue