forked from mirrors/nixpkgs
absl-py: init at 0.1.3
This commit is contained in:
parent
6cfb55fdd8
commit
08508f5319
|
@ -145,6 +145,7 @@
|
|||
DamienCassou = "Damien Cassou <damien@cassou.me>";
|
||||
danbst = "Danylo Hlynskyi <abcz2.uprola@gmail.com>";
|
||||
dancek = "Hannu Hartikainen <hannu.hartikainen@gmail.com>";
|
||||
danharaj = "Dan Haraj <dan@obsidian.systems>";
|
||||
danielfullmer = "Daniel Fullmer <danielrf12@gmail.com>";
|
||||
dasuxullebt = "Christoph-Simon Senjak <christoph.senjak@googlemail.com>";
|
||||
david50407 = "David Kuo <me@davy.tw>";
|
||||
|
|
28
pkgs/development/python-modules/absl-py/default.nix
Normal file
28
pkgs/development/python-modules/absl-py/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "absl-py";
|
||||
version = "0.1.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "017wc85i7l3vpjzw3shgb7k7n0jfid88g09dlf1kgdy4ll0sjfax";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
# checks use bazel; should be revisited
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Abseil Python Common Libraries";
|
||||
homepage = "https://github.com/abseil/abseil-py";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ danharaj ];
|
||||
};
|
||||
}
|
|
@ -106,6 +106,8 @@ in {
|
|||
# Left for backwards compatibility
|
||||
"3to2" = self.py3to2;
|
||||
|
||||
absl-py = callPackage ../development/python-modules/absl-py { };
|
||||
|
||||
aenum = callPackage ../development/python-modules/aenum { };
|
||||
|
||||
affinity = callPackage ../development/python-modules/affinity { };
|
||||
|
|
Loading…
Reference in a new issue