mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #53402 from geistesk/py-cbor-init
cbor: init at 1.0.0
This commit is contained in:
commit
da4c73045b
22
pkgs/development/python-modules/cbor/default.nix
Normal file
22
pkgs/development/python-modules/cbor/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cbor";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk";
|
||||
};
|
||||
|
||||
# Tests are excluded from PyPI and four unit tests are also broken:
|
||||
# https://github.com/brianolson/cbor_py/issues/6
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://bitbucket.org/bodhisnarkva/cbor;
|
||||
description = "Concise Binary Object Representation (CBOR) library";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ geistesk ];
|
||||
};
|
||||
}
|
@ -1194,6 +1194,8 @@ in {
|
||||
|
||||
case = callPackage ../development/python-modules/case {};
|
||||
|
||||
cbor = callPackage ../development/python-modules/cbor {};
|
||||
|
||||
cassandra-driver = callPackage ../development/python-modules/cassandra-driver { };
|
||||
|
||||
cccolutils = callPackage ../development/python-modules/cccolutils {};
|
||||
|
Loading…
Reference in New Issue
Block a user